TQAColorTableDelete
A drawing engine may define a method to dispose of color lookup table. This method is optional and must be supported only by drawing engines that support color lookup tables.
typedef void (*TQAColorTableDelete) (TQAColorTable *colorTable);
colorTable
- A color lookup table.
DESCRIPTION
YourTQAColorTableDelete
function is called whenever an application callsQAColorTableDelete
. Your function should delete the color lookup table specified by thecolorTable
parameter. Any memory and other resources associated with that color lookup table should be released.